.event .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 300px;
    margin: 40px;
    text-align: center;
    font-family: arial;
    border-radius: 20px;
  }
  
  .event  .price {
    color: grey;
    font-size: 22px;
  }
  
  .event  .card button {
    border: none;
    outline: 0;
    padding: 12px;
    color: white;
    background-color: var(--light-yellow);
    text-align: center;
    cursor: pointer;
    width: 95%;
    font-size: 18px;
    border-radius: 20px;
  }
  
  .event .card button:hover {
    opacity: 0.7;
  }
  .event {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .event .card img{
    border-radius: 20px;
  }
  .event .button {
    display: inline-block;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    background-color: green;
    border-radius: 15px;
    outline: none;
    transition: 0.3s;
    width: 80%;
    cursor: pointer;
  }
  .event .button:hover {
    background-color: var(--green);  }